----------------------------------------------------
Changelog from version 1.3.0 to 1.3.1
----------------------------------------------------

If you have made code changes to your theme files you can manually update the theme by following the code changes below. Please back up your own edited theme files before making these changes.


--------------------------
style.css
--------------------------

** Find around line 3: **

Version: 1.3.0

** Replace with: **

Version: 1.3.1


** Find around lines  709-710: **

}
.jFlowControl img, .toc img {

** Add above: **

background: url(images/no-thumb-small.jpg) no-repeat;


--------------------------
header.php
--------------------------

** Find around lines 218-219: **

get_post_meta($post->ID, 'post_template', true) == "Two Columns" OR get_post_meta($post->ID, 'post_template', true) == "Full Width") { ?> class="main-content-extended"<?php } ?>>
		
** Replace with: **

is_single() && (get_post_meta($post->ID, 'post_template', true) == "Two Columns" OR get_post_meta($post->ID, 'post_template', true) == "Full Width")) { ?> class="main-content-extended"<?php } ?>>


--------------------------
footer.php
--------------------------

** Find around lines 11-12: **

get_post_meta($post->ID, 'post_template', true) == "Two Columns" OR
get_post_meta($post->ID, 'post_template', true) == "Full Width") { ?><?php } else { ?>

** Replace with: **

is_single() && (get_post_meta($post->ID, 'post_template', true) == "Two Columns" OR
get_post_meta($post->ID, 'post_template', true) == "Full Width")) { ?><?php } else { ?>


--------------------------
video-file.php
--------------------------

** Find around line 6: **

<param name="wmode" value="opaque" />

** Replace with: **

<param name="wmode" value="transparent" />


** Find around line 8: **

wmode="opaque"

** Replace with: **

wmode="transparent"